home *** CD-ROM | disk | FTP | other *** search
/ Freelog 115 / FreelogNo115-MaiJuin2013.iso / Internet / Filezilla Server / FileZilla_Server-0_9_41.exe / source / interface / UsersView.h < prev   
C/C++ Source or Header  |  2011-11-06  |  2KB  |  76 lines

  1. // FileZilla Server - a Windows ftp server
  2.  
  3. // Copyright (C) 2002-2004 - Tim Kosse <tim.kosse@gmx.de>
  4.  
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU General Public License
  7. // as published by the Free Software Foundation; either version 2
  8. // of the License, or (at your option) any later version.
  9.  
  10. // This program is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. // GNU General Public License for more details.
  14.  
  15. // You should have received a copy of the GNU General Public License
  16. // along with this program; if not, write to the Free Software
  17. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  18.  
  19. #if !defined(AFX_USERSVIEW_H__EDD194C1_BCAA_4D0D_B1E2_A922E10E8EB7__INCLUDED_)
  20. #define AFX_USERSVIEW_H__EDD194C1_BCAA_4D0D_B1E2_A922E10E8EB7__INCLUDED_
  21.  
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. // UsersView.h : Header-Datei
  26. //
  27. class CUsersListCtrl;
  28.  
  29. /////////////////////////////////////////////////////////////////////////////
  30. // Ansicht CUsersView 
  31.  
  32. class CUsersView : public CView
  33. {
  34. protected:
  35.     CUsersView();           // Dynamische Erstellung verwendet geschⁿtzten Konstruktor
  36.     DECLARE_DYNCREATE(CUsersView)
  37.  
  38. // Attribute
  39. public:
  40.  
  41. // Operationen
  42. public:
  43.     CUsersListCtrl *m_pListCtrl;
  44.  
  45. // ▄berschreibungen
  46.     // Vom Klassen-Assistenten generierte virtuelle Funktionsⁿberschreibungen
  47.     //{{AFX_VIRTUAL(CUsersView)
  48.     protected:
  49.     virtual void OnDraw(CDC* pDC);      // ▄berschrieben zum Zeichnen dieser Ansicht
  50.     //}}AFX_VIRTUAL
  51.  
  52. // Implementierung
  53. protected:
  54.     virtual ~CUsersView();
  55. #ifdef _DEBUG
  56.     virtual void AssertValid() const;
  57.     virtual void Dump(CDumpContext& dc) const;
  58. #endif
  59.  
  60.     // Generierte Nachrichtenzuordnungsfunktionen
  61. protected:
  62.     //{{AFX_MSG(CUsersView)
  63.     afx_msg void OnSize(UINT nType, int cx, int cy);
  64.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  65.     afx_msg void OnDestroy();
  66.     //}}AFX_MSG
  67.     DECLARE_MESSAGE_MAP()
  68. };
  69.  
  70. /////////////////////////////////////////////////////////////////////////////
  71.  
  72. //{{AFX_INSERT_LOCATION}}
  73. // Microsoft Visual C++ fⁿgt unmittelbar vor der vorhergehenden Zeile zusΣtzliche Deklarationen ein.
  74.  
  75. #endif // AFX_USERSVIEW_H__EDD194C1_BCAA_4D0D_B1E2_A922E10E8EB7__INCLUDED_
  76.